The Museum-Script will generate a Museum-Galery like Animation in Blender.
The pictures will be generated from the pictures in the "Pics"-Folder.
The number of pictures can be changed in the Script (NumPics-Variable).

You have to:
1. Add the Library to the Blender Library Path using the Addon-Button "Add Library"
2. You have to provide the pictures with the proper Names in one folder (use picture-renamer?)
3. You have to change the script that it knows your picture folder (see below)
4. run this Script from within the Blender-Text-Editor.
########################################################
# Pictures must be named "PXC_1.jpg","PXC_2.jpg" etc.   
########################################################


#########################################
# Change these variables to your needs
#########################################
NumPics=23
PicPath="F:\\00_MR\\PB_MiniRobots-Editoren\\SPRE 02\\Source\\Sample Scripts\\Blender-AddOn\\AddOn Pro\\Library\\Museum\\Pictures\\"
print(PicPath)

You need to change this that it fits to your system where the Folder with the pictures for the museum is.

All pictures that shall be used must be in the Picture-Folder and must be named "PXC_(number).jpg"
For example: "PXC_1.jpg","PXC_2.jpg" etc.*   

Once you start the Script the Script runs for a while.
At then end you get the ready Scene, you will just need to add some material to the Walls and the Floor.

##########################
*see here in the script:
    # You have to correct this path to your system
    # Pictures must be named "PXC_1.pg","PXC_2.pg" etc.   
    pat=PicPath+"PXC_"+str(picn)+".jpg"

